home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 18 / CU Amiga Magazine's Super CD-ROM 18 (1997)(EMAP Images)(GB)[!][issue 1998-01].iso / CUCD / Online / CNetDemo / cnet / sdk / include / other.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-09-04  |  1016 b   |  59 lines

  1.  
  2. #define TOP_STAT 51
  3. #define TOP_NOSTAT 11
  4.  
  5. #define C_BLACK  0
  6. #define C_RED    4
  7. #define C_GREEN  2
  8. #define C_YELLOW 6
  9. #define C_BLUE   1
  10. #define C_PURPLE 5
  11. #define C_CYAN   3
  12. #define C_WHITE  7
  13.  
  14. #define GRN_BLK 0x20
  15. #define YEL_BLK 0x60
  16. #define BLU_BLU 0x11
  17. #define CYN_BLK 0x30
  18. #define CYN_BLU 0x31
  19. #define WHT_BLK 0x70
  20. #define WHT_RED 0x74
  21. #define WHT_BLU 0x71
  22. #define WHT_PUR 0x75
  23.  
  24. #define EVER ;;
  25.  
  26. struct MarkType {
  27.     short    sub;                // The new system can uniquely 
  28.     ULONG    ItemNumber;        // identify a message with this
  29.     long    Seek;                // information.  Used for Z/ZG.
  30.     ULONG    Number;
  31. };
  32.  
  33. struct TransType {
  34.     struct    TransType *next;    // linked list
  35.  
  36.     long    lines;
  37.     long    bytes;
  38.  
  39.     UBYTE    **mm;                        // pointers to BBSMENU lines
  40.     UBYTE    **bm;                        // pointers to BBSTEXT lines
  41.     short    menustart[50];
  42.     short    menulen  [50];
  43. };
  44.  
  45. struct    ItemServerType {
  46.     struct    ItemServerType *next;
  47.  
  48.     ULONG    sid;
  49.  
  50.     short    task;
  51.     short    sub;
  52.     ULONG    item;
  53.  
  54.     short    notify;            // account to notify
  55.  
  56.     struct    IsDate    Submitted;
  57.     UBYTE    status, globreak;
  58. };
  59.